home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / isetl.arc / gcd.t < prev    next >
Text File  |  1987-08-20  |  135b  |  15 lines

  1. program x;
  2.     read a;
  3.     read b;
  4.     while a/= 0 do
  5.     print [a,b];
  6.     read a;
  7.     read b;
  8.     end;
  9.     print "done";
  10.     end;
  11.  
  12. 1;2;
  13. 3;4;
  14. 0;0;
  15.